home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / run_feature_2.e < prev    next >
Text File  |  2000-03-25  |  5KB  |  211 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class RUN_FEATURE_2
  17.  
  18. inherit RUN_FEATURE;
  19.  
  20. creation make
  21.  
  22. feature
  23.  
  24.    base_feature: WRITABLE_ATTRIBUTE;
  25.  
  26.    result_type: TYPE;
  27.  
  28.    is_deferred: BOOLEAN is false;
  29.  
  30.    can_be_dropped: BOOLEAN is true;
  31.  
  32.    is_pre_computable: BOOLEAN is false;
  33.  
  34.    is_static: BOOLEAN is false;
  35.  
  36.    is_once_procedure: BOOLEAN is false;
  37.  
  38.    is_once_function: BOOLEAN is false;
  39.  
  40.    arguments: FORMAL_ARG_LIST is
  41.       do
  42.       end;
  43.  
  44.    require_assertion: RUN_REQUIRE is
  45.       do
  46.       end;
  47.  
  48.    local_vars: LOCAL_VAR_LIST is
  49.       do
  50.       end;
  51.  
  52.    routine_body: COMPOUND is
  53.       do
  54.       end;
  55.  
  56.    rescue_compound: COMPOUND is
  57.       do
  58.       end;
  59.  
  60.    ensure_assertion: E_ENSURE is
  61.       do
  62.       end;
  63.  
  64.    static_value_mem: INTEGER is
  65.       do
  66.       end;
  67.  
  68.    afd_check is
  69.       local
  70.          rc: RUN_CLASS;
  71.       do
  72.          rc := result_type.run_type.run_class;
  73.       end;
  74.  
  75.    mapping_c is
  76.       local
  77.          ct: TYPE;
  78.       do
  79.          cpp.put_string("(/*RF2*/");
  80.          ct := current_type;
  81.          if ct.is_basic_eiffel_expanded then
  82.             check
  83.                as_item = name.to_string
  84.             end;
  85.             cpp.put_target_as_value;
  86.          elseif ct.is_reference then
  87.         cpp.put_character('(');
  88.         cpp.put_target_as_target;
  89.         cpp.put_string(")->_");
  90.         cpp.put_string(name.to_string);
  91.         run_class.force_c_recompilation_comment(Current);
  92.          else
  93.             check
  94.                ct.is_user_expanded;
  95.             end;
  96.             cpp.put_character('(');
  97.             cpp.put_target_as_value;
  98.             cpp.put_string(")._");
  99.             cpp.put_string(name.to_string);
  100.             run_class.force_c_recompilation_comment(Current);
  101.          end;
  102.          cpp.put_character(')');
  103.       end;
  104.  
  105.    c_define is
  106.       do
  107.       end;
  108.  
  109. feature {ADDRESS_OF_POOL}
  110.  
  111.    address_of_c_define(caller: ADDRESS_OF) is
  112.       do
  113.       end;
  114.  
  115. feature {ADDRESS_OF}
  116.  
  117.    address_of_c_mapping is
  118.       do
  119.          cpp.put_string("&(");
  120.          cpp.print_current;
  121.          cpp.put_string("->_");
  122.          cpp.put_string(name.to_string);
  123.          cpp.put_character(')');
  124.       end;
  125.  
  126. feature {CALL_PROC_CALL}
  127.  
  128.    collect_c_tmp is
  129.       do
  130.       end;
  131.  
  132. feature {NONE}
  133.  
  134.    initialize is
  135.       do
  136.          result_type := base_feature.result_type;
  137.          result_type := result_type.to_runnable(current_type);
  138.       end;
  139.  
  140.    compute_use_current is
  141.       do
  142.          use_current_state := ucs_true;
  143.       end;
  144.  
  145.    compute_stupid_switch(r: ARRAY[RUN_CLASS]) is
  146.       do
  147.          if cpp.attribute_read_removal(Current,r) then
  148.             stupid_switch_state := ucs_true;
  149.          else
  150.             stupid_switch_state := ucs_false;
  151.          end;
  152.       end;
  153.  
  154. feature {RUN_CLASS}
  155.  
  156.    jvm_field_or_method is
  157.       do
  158.          jvm.add_field(Current);
  159.       end;
  160.  
  161. feature
  162.  
  163.    mapping_jvm is
  164.       local
  165.          idx: INTEGER;
  166.          stack_level: INTEGER;
  167.       do
  168.          jvm.push_target_as_target;
  169.          if current_type.is_basic_eiffel_expanded then
  170.             check
  171.                as_item = name.to_string
  172.             end;
  173.          else
  174.             stack_level := result_type.jvm_stack_space - 1;
  175.             idx := constant_pool.idx_fieldref(Current);
  176.             code_attribute.opcode_getfield(idx,stack_level);
  177.          end;
  178.       end;
  179.  
  180. feature {JVM}
  181.  
  182.    jvm_define is
  183.       local
  184.          name_idx, descriptor: INTEGER;
  185.          cp: like constant_pool;
  186.       do
  187.          cp := constant_pool;
  188.          name_idx := cp.idx_utf8(name.to_string);
  189.          descriptor := cp.idx_utf8(jvm_descriptor);
  190.          field_info.add(1,name_idx,descriptor);
  191.       end;
  192.  
  193. feature {NONE}
  194.  
  195.    update_tmp_jvm_descriptor is
  196.       local
  197.          rt: TYPE;
  198.       do
  199.          rt := result_type.run_type;
  200.          if rt.is_reference then
  201.             tmp_jvm_descriptor.append(jvm_root_descriptor);
  202.          else
  203.             rt.jvm_descriptor_in(tmp_jvm_descriptor);
  204.          end;
  205.       end;
  206.  
  207.    stupid_switch_comment: STRING is "SSWARF2";
  208.  
  209. end -- RUN_FEATURE_2
  210.  
  211.